home *** CD-ROM | disk | FTP | other *** search
/ Micromanía: 150 Juegos 2010 / 150Juegos_16.iso / Shareware / Shape Smash / shape-smash.swf / scripts / mx / core / IFlexDisplayObject.as < prev    next >
Encoding:
Text File  |  2010-05-14  |  1.6 KB  |  62 lines

  1. package mx.core
  2. {
  3.    import flash.display.DisplayObject;
  4.    import flash.display.DisplayObjectContainer;
  5.    import flash.display.IBitmapDrawable;
  6.    import flash.events.IEventDispatcher;
  7.    
  8.    public interface IFlexDisplayObject extends IBitmapDrawable, IEventDispatcher
  9.    {
  10.       function get name() : String;
  11.       
  12.       function set width(param1:Number) : void;
  13.       
  14.       function get measuredHeight() : Number;
  15.       
  16.       function set height(param1:Number) : void;
  17.       
  18.       function get scaleY() : Number;
  19.       
  20.       function move(param1:Number, param2:Number) : void;
  21.       
  22.       function get scaleX() : Number;
  23.       
  24.       function set mask(param1:DisplayObject) : void;
  25.       
  26.       function set scaleX(param1:Number) : void;
  27.       
  28.       function set name(param1:String) : void;
  29.       
  30.       function set scaleY(param1:Number) : void;
  31.       
  32.       function get visible() : Boolean;
  33.       
  34.       function get measuredWidth() : Number;
  35.       
  36.       function set visible(param1:Boolean) : void;
  37.       
  38.       function get alpha() : Number;
  39.       
  40.       function get height() : Number;
  41.       
  42.       function get width() : Number;
  43.       
  44.       function get parent() : DisplayObjectContainer;
  45.       
  46.       function get mask() : DisplayObject;
  47.       
  48.       function set x(param1:Number) : void;
  49.       
  50.       function setActualSize(param1:Number, param2:Number) : void;
  51.       
  52.       function set y(param1:Number) : void;
  53.       
  54.       function get x() : Number;
  55.       
  56.       function get y() : Number;
  57.       
  58.       function set alpha(param1:Number) : void;
  59.    }
  60. }
  61.  
  62.